home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-11-05 | 466 b | 19 lines |
- # Makefile for readline and history libraries.
- # ST version (dpg)
-
- CPPFLAGS = -DVOID_SIGHANDLER -DMiNT
- CC = gcc -traditional
-
- OBJECTS = readline.o history.o funmap.o keymaps.o
-
- all: readline.olb
-
- readline.olb: $(OBJECTS)
- rm -f $@
- ar cs $@ $(OBJECTS)
-
- readline.o: readline.c readline.h chardefs.h keymaps.h history.h
- history.o: history.c history.h
- funmap.o: funmap.c readline.h
- keymaps.o: keymaps.c emacs_keymap.c vi_keymap.c keymaps.h chardefs.h
-